home *** CD-ROM | disk | FTP | other *** search
/ Flybox Trout (Edition 1) / Flybox Trout (Edition 1).iso / Setup / Support / FlyBox.exe / FlyBox.dxr / 00016_GetURLScripts.ls < prev    next >
Encoding:
Text File  |  2002-04-15  |  350 b   |  20 lines

  1. property spriteNum
  2.  
  3. on GetUrl me, theURL
  4.   if theURL = "FlyBox" then
  5.     url = "http://www.flybox.info/"
  6.     gotoNetPage(url)
  7.   else
  8.     if theURL = "Denaploy" then
  9.       url = "http://www.denaploy.co.uk/"
  10.       gotoNetPage(url)
  11.     else
  12.       if theURL = "Quit" then
  13.         quit()
  14.       else
  15.         go(theURL)
  16.       end if
  17.     end if
  18.   end if
  19. end
  20.